            
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

                  
body {
    font-family: Arial, sans-serif;
}
 
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #44c589;
    padding: 15px 30px;
}

.navbar .logo a {
    color: white;
    font-size: 24px;
    text-decoration: none;
}

   
.nav-links {
    list-style-type: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 15px;
    display: block;
    
}

.nav-links li a:hover {
    background-color: #0f23d3;
    transform: scale(0.9);
    border-radius: 5px;
}

 
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    background-color: white;
    height: 3px;
    width: 25px;
    margin: 5px 0;
}

 
@media (max-width: 768px) {
    .nav-links {
       position: relative;
       margin: 50px auto;
        top: 70px;
        right: 0;
        width: 100%;
        background: transparent;
        background-color: #44c589;
        flex-direction: column;
        align-items: center;
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .menu-toggle {
        display: flex;
    } 
 }

 
.nav-links.active {
    display: flex;
}
  
.card {
    width: 450px;
    height: 500px;
 padding: 10px;
 margin: 10px;
    border-radius: 50%;
 
    background-color: rgb(50, 208, 45);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  }
  .card-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10%;
  }
 
  .card-description {
    font-size: 1em;
    color: #877373;
  }
  .container {
    display: flex;
    justify-content: space-between; 
  }
  .card {
    width: 45%;  
    height: 500px;  
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #f6e9e9;
  
    box-sizing: border-box;  
    border-radius: 50px;
  }
  
  .card1 {
    width: 50%;  
    height: 500px;  
    background-color: rgb(186, 173, 230);  
 padding-top: 100px;
 
 margin-top: 32px;
 left: -15px;
    justify-content: center;
    align-items: center;
    border: 1px solid lightblue; 
    box-sizing: border-box;  
    position: relative;
      border-radius: 50px;
  }
   
.card1.container{
    width: 246px;
    overflow: hidden;
}
.continer .text{
    position:relative;
    color: #ff8800;
    font-weight: 600;
    font-size: 30px;
}.continer .text.first-text{
    color: #fff;
}
.continer .name{
    color: #000000;
    font-size: 38px;
    font-weight: 600;
    padding-left: 30px;
    font-family: 'Courier New', Courier, monospace;
}.text.sec-text:before{ 
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height:100%;
    width: 100%;
    background-color: rgb(186, 173, 230);
    border-left: 2px solid #366af0;
    animation: animate 4s steps(12) infinite;


}
@keyframes animate{
    40%, 60%{
        left: calc(100% + 4px);
    }100%{
        left: 0%;

    }
}

  .card1 .downloade{
    padding: 12px 24px;
    position: absolute;
    text-align: bottom;
    font-size: 18px;
    text-align: center;
    position: fixed;
    bottom: 100px;   
    left: 80%;
    transform: translateX(-50%);  
    color : wheat;
    background: linear-gradient(to right, #4CAF50, #8BC34A);  
    border: none;
    width: 210px;
    border-radius: 30px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  
    cursor: pointer;
    transition: all 0.3s ease;  
  }